home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 February / macformat-034.iso / mac / Shareware City / Developers / simple-sockets-11-c / Simple Sockets 1.1 ƒ / ip ƒ / iptime.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-12  |  402 b   |  21 lines  |  [TEXT/CWIE]

  1. /*
  2.  * time.h
  3.  *
  4.  * unixlike time stuff
  5.  *
  6.  */
  7.  
  8. #ifndef __IPTIMEH__
  9. #define __IPTIMEH__
  10.  
  11. struct timeval {
  12.      long  tv_sec;       /* seconds since Jan. 1, 1970 */
  13.      long  tv_usec;      /* and microseconds */
  14. };
  15.  
  16. struct timezone {
  17.         int             tz_minuteswest; /* minutes west of Greenwich */
  18.         int             tz_dsttime;     /* type of dst correction */
  19. };
  20.  
  21. #endif    /* __IPTIMEH__ */